home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Acao / DomonicDefence4.swf / scripts / DefineButton2_362 / BUTTONCONDACTION on(press).as
Encoding:
Text File  |  2005-09-27  |  524 b   |  27 lines

  1. on(press){
  2.    if(_root.modeo == "Classic")
  3.    {
  4.       _root.modeo = "D and D";
  5.       _root.dragOn = 1;
  6.       _root.holdIt = 0;
  7.    }
  8.    else if(_root.modeo == "D and D")
  9.    {
  10.       _root.modeo = "Hold";
  11.       _root.dragOn = 0;
  12.       _root.holdIt = 1;
  13.    }
  14.    else if(_root.modeo == "Hold")
  15.    {
  16.       _root.modeo = "All";
  17.       _root.dragOn = 0;
  18.       _root.holdIt = 0;
  19.    }
  20.    else if(_root.modeo == "All")
  21.    {
  22.       _root.modeo = "Classic";
  23.       _root.dragOn = 0;
  24.       _root.holdIt = 0;
  25.    }
  26. }
  27.